home *** CD-ROM | disk | FTP | other *** search
- global chaptercount, firstchapter, curchapter
-
- on mouseEnter
- n = the currentSpriteNum
- if sprite(n + 20).member.text = EMPTY then
- exit
- end if
- sprite(n + 10).foreColor = 4
- sprite(n + 20).foreColor = 4
- cursor(280)
- end
-
- on mouseLeave
- n = the currentSpriteNum
- sprite(n + 10).foreColor = 0
- sprite(n + 20).foreColor = 0
- cursor(-1)
- end
-
- on mouseUp
- n = the currentSpriteNum
- if sprite(n + 20).member.text = EMPTY then
- exit
- end if
- curchapter = firstchapter + (n - 7)
- if curchapter > chaptercount then
- curchapter = chaptercount
- end if
- gotovideo()
- refalshchaptercontent()
- cursor(-1)
- end
-